Add "Migrate to Latest Version" button and import validation with migration offer#47
Merged
JoeProgrammer88 merged 3 commits intomainfrom Mar 21, 2026
Merged
Conversation
Co-authored-by: JoeProgrammer88 <7156063+JoeProgrammer88@users.noreply.github.com> Agent-Logs-Url: https://github.com/SpeakingInBits/TaskManagerWeb/sessions/308242b3-7d04-4e13-8fff-3c67e92587d7
Copilot
AI
changed the title
[WIP] Add migrate button for data management in settings page
Add "Migrate to Latest Version" button and import validation with migration offer
Mar 20, 2026
Member
|
@copilot Merge the current origin/main into this branch. The .js and .map files were removed from git tracking because the .ts code gets compiled into the output directory |
Co-authored-by: JoeProgrammer88 <7156063+JoeProgrammer88@users.noreply.github.com> Agent-Logs-Url: https://github.com/SpeakingInBits/TaskManagerWeb/sessions/b6ab78ca-1286-4da7-8f86-9ecede968ae8
Contributor
Author
Done in 5200d18. Merged |
JoeProgrammer88
approved these changes
Mar 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds data migration support to the Settings page: a dedicated migrate button in Data Management, and a validation + migration prompt when importing files with missing or malformed fields.
Storage layer (
storage.ts)ValidationResultinterface —{ isValid, hasPartialData, issues[], parsed }validateImportData(jsonString)— validates without importing; distinguishes fully valid / partially valid (missing required fields) / completely invalid (bad JSON, unrecognized object)buildMigratedData(data)(private) — merges partialAppDatawith defaults; applies existing category migration (per-type object → flat array); stamps latestversion,schemaVersion,lastUpdatedmigrateAndImport(data)— runs partial data through migration and persistsmigrateToLatest()— migrates currently stored data in-placeUI layer (
app.ts/index.html)importData()— validates first; on partial data shows a confirm dialog listing issues before offering migration:migrateToLatest()— calls storage migration and reloads#migrateBtnadded to Data Management section in Settings; safe to run at any time against current stored dataTests
21 new unit tests covering
validateImportData(valid, partial, bad JSON, non-array fields),migrateAndImport(defaults, old category format, existing arrays), andmigrateToLatest(data preserved, version updated, missing fields filled).Original prompt
📱 Kick off Copilot coding agent tasks wherever you are with GitHub Mobile, available on iOS and Android.